html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: 'Open Sans', sans-serif;
  color: #fff;
  background-color: #044068;
  scroll-behavior: smooth;
}

#particles-js {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 0;
  top: 0;
  left: 0;
}


header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10;
  background-color: rgba(0, 44, 75, 0.95);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 2rem;
  height: 90px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
  backdrop-filter: blur(6px);
}

.logo {
  display: flex;
  align-items: center;
  gap: 20px;
}

.logo img {
  width: 80px;
  height: auto;
}

.logo-text {
  font-family: 'Ethnocentric Rg', sans-serif;
  font-size: 25px;
  color: #00f4fe;
  letter-spacing: 2px;
  text-shadow: 0 0 10px #00f4fe55;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  padding-right: 100px;
}

nav a {
  color: #00f4fe;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s, text-shadow 0.3s;
}

nav a:hover {
  color: #fff;
  text-shadow: 0 0 8px #00f4fe;
}


section {
  position: relative;
  z-index: 5;
  padding: 130px 2rem 80px;
  background: rgba(0, 44, 75, 0.85);
  text-align: center;
  scroll-margin-top: 100px;
}

.section.alt {
  background: rgba(0, 44, 75, 0.65);
}

.content {
  max-width: 1000px;
  margin: 0 auto;
}

h1, h2 {
  color: #00f4fe;
  font-family: 'Ethnocentric Rg', sans-serif;
  text-shadow: 0 0 10px #00f4fe55;
  margin-bottom: 1rem;
}

p, li {
  font-size: 1.1rem;
  line-height: 1.6;
}

.section-image {
  max-width: 100%;
  width: 600px;
  height: auto;
  border-radius: 12px;
  margin-top: 20px;
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.section-image:hover {
  transform: scale(1.02);
  box-shadow: 0 0 25px rgba(0, 255, 255, 0.5);
}


.program-list {
  text-align: left;
  max-width: 700px;
  margin: 1.5rem auto;
  padding-left: 1rem;
}

.program-list li {
  margin-bottom: 0.7rem;
}


footer {
  background: rgba(0, 44, 75, 0.95);
  text-align: center;
  padding: 1.5rem;
  font-size: 0.9rem;
  z-index: 10;
  position: relative;
  border-top: 1px solid rgba(0,255,255,0.2);
}

.top-barbuttons {
  font-family: 'Ethnocentric Rg', sans-serif;
  text-shadow: 0 0 10px #00f4fe55;
}


@media (max-width: 700px) {
  header {
    flex-direction: column;
    height: auto;
    padding: 1rem;
  }

  nav ul {
    flex-direction: column;
    gap: 0.8rem;
  }

  .section {
    padding: 110px 1rem 60px;
  }

  .program-list {
    text-align: center;
  }
}
